| AcceptsReturn |
Gets or sets a value (true/false) indicating whether the multiline textbox will accept the Enter character as input. |
| AcceptsTab |
Gets or sets a value (true/false) indicating whether the multiline textbox will accept the Tab character as input. |
| AllowDrop |
Gets or sets a value (true/false) indicating whether the control will accept data that is dragged onto it. |
| Anchor |
Specifies how a control anchors to the edges of its Form. |
| BackColor |
Gets or sets the background color of the form. Refer to the Colors object. |
| BorderStyle |
Gets or sets the border style of the control. Refer to the ControlBorderStyle enum. |
| CharacterCasing |
Gets or sets a value indicating the case of the text. Refer to the CharacterCasing enum. |
| CtrlId |
Gets or sets a value indicating the control ID of the control. |
| CtrlType |
Gets or sets the control type value. Always ControlType.TextBox and used when adding control to the application’s form collection. |
| CueBannerText |
Gets or sets the textual cue, or tip, that is displayed by the edit control to prompt the user for information. |
| Enabled |
Gets or sets a value (true/false) indicating whether the control can respond to user interaction. |
| Focused |
Gets or sets a value (true/false) indicating whether the control has input focus. |
| Font |
Gets or sets the font for the control. Refer to the Font object. |
| ForeColor |
Gets or sets the foreground color of the control. Refer to the Colors object. |
| Height |
Gets or sets the height of the control. |
| HideSelection |
Gets or sets a value (true/false) indicating whether the selection should be hidden when the control loses focus. |
| hWindow |
Gets the Windows handle (hwnd) of the control. |
| hWindowParent |
Gets or sets the Windows handle (hwnd) of the parent control. |
| Left |
Gets or sets the distance, in pixels, between the left edge of the control and the left edge of its container's client area (normally the form). |
| Location |
Gets or sets the top and left position of the control. Get: returns wfxPoint object. Set: (left, top). |
| Locked |
Gets or sets a value (true/false) indicating whether the control can be moved or resized. |
| MaxLength |
Gets or sets a value indicating the maximum number of characters that can be entered into the control. |
| MultiLine |
Gets or sets a value (true/false) indicating whether the text in the edit control can span more than one line. |
| Parent |
Gets or sets the parent container of the control. |
| PasswordChar |
Gets or sets a character to display for password input in a single line edit control. |
| ReadOnly |
Gets or sets a value (true/false) indicating whether the text can be edited. |
| SelectionStart |
Gets or sets a value indicating the start of the selected text. |
| SelectionLength |
Gets or sets a value indicating the length of the selected text. |
| Size |
Gets or sets the size of the form. Get: returns wfxSize object. Set: (width, height) |
| TabIndex |
Gets or sets the position that the control occupies in the TAB position. |
| TabStop |
Gets or sets a value (true/false) indicating whether the user can use the TAB key to give focus to the control. |
| Tag |
Gets or sets user defined text associated with the form. |
| Text |
Gets or sets the text (caption) associated with this form. |
| TextAlign |
Gets or sets a value indicating the alignment of the text on a control. Refer to TextAlignment enum. |
| TextScrollBars |
Gets or sets the value to indicate what scrollbars to display. Refer to the ScrollBars enum. |
| Top |
Gets or sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area (normally the form). |
| UseMnemonic |
Gets or sets a value (true/false) indicating whether the first character preceded by an ampersand (&) character will be used as the control’s accelerator key. |
| Visible |
Gets or sets a value (true/false) indicating whether the control is displayed. |
| Width |
Gets or sets the width of the control. |
| WordWrap |
Gets or sets a value (true/false) indicating whether text is automatically word wrapped for multiline controls. |